home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / vbasic / subvbx.exe / SUBVBVW.H < prev    next >
C/C++ Source or Header  |  1993-05-13  |  1KB  |  53 lines

  1. // subvbvw.h : interface of the CSubvbxView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////    
  4.  
  5. #include "subvbctl.h"
  6.  
  7. class CSubvbxView : public CFormView
  8. {
  9. protected: // create from serialization only
  10.     CSubvbxView();
  11.     DECLARE_DYNCREATE(CSubvbxView)
  12.  
  13. // Attributes
  14. public:
  15.     CSubvbxDoc* GetDocument();
  16.  
  17. // Operations
  18. public:
  19.  
  20. // Implementation
  21. public:      
  22.     virtual void OnInitialUpdate();
  23.     virtual ~CSubvbxView();
  24.     virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. #ifdef _DEBUG
  26.     virtual void AssertValid() const;
  27.     virtual void Dump(CDumpContext& dc) const;
  28. #endif        
  29.  
  30. protected: 
  31.    // Subclassed VBControl Object
  32.    CMyGrid m_MyGrid; 
  33.    
  34.    // Keeps track of first time OnIntialUpdate is called
  35.    BOOL m_bFirstUpdate;
  36.  
  37.  
  38. // Generated message map functions
  39. protected:
  40.     //{{AFX_MSG(CSubvbxView)
  41.         // NOTE - the ClassWizard will add and remove member functions here.
  42.         //    DO NOT EDIT what you see in these blocks of generated code !
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. #ifndef _DEBUG    // debug version in subvbvw.cpp
  48. inline CSubvbxDoc* CSubvbxView::GetDocument()
  49.    { return (CSubvbxDoc*) m_pDocument; }
  50. #endif
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.